@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
IMG {
    border-bottom: none!important;
    border-left: none!important;
    border-top: none!important;
    border-right: none!important;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media only screen and (max-width: 75em) {
  body {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 56.25em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  body {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #471900;
  color: #ffffff;
}

@font-face {
  font-family: yh-bold;
  src: url("../font-family/MSYH_Bold.ttf");
}
@font-face {
  font-family: yh;
  src: url("../font-family/MSYH_Regular.ttf");
}
@font-face {
  font-family: tm;
  src: url("../font-family/Times_Roman.ttf");
}
@font-face {
  font-family: tm-bold;
  src: url("../font-family/Times_Bold.ttf");
}
body {
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

.only-mobile {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .only-mobile {
    display: block;
  }
}

.only-pc {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .only-pc {
    display: none;
  }
}

.heading {
  position: relative;
  margin-bottom: 3.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .heading {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .heading {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading {
    margin-bottom: 2rem;
  }
}
.heading__box {
  position: relative;
}
.heading__box img {
  display: block;
}
.heading__box .tab-text {
  width: 800px;
  display: flex;
  position: absolute;
  left: 18rem;
  top: 1.2rem;
  z-index: 999;
}
@media only screen and (max-width: 56.25em) {
  .heading__box .tab-text {
    left: 0;
    top: 7rem;
    width: calc(100vw - 60px);
  }
}
.heading__box .tab-text .text {
  padding: 0.5rem 2rem;
  border-radius: 1000px;
  background: rgba(241, 143, 112, 0.3);
  font-size: 1.6rem;
  color: #832e00;
  cursor: pointer;
}
.heading__box .tab-text .text:not(:last-child) {
  margin-right: 1.2rem;
}
.heading__box .tab-text .text.active, .heading__box .tab-text .text:hover {
  background-color: #a95c4d;
  color: #fff;
}
.heading__tab {
  position: absolute;
  left: 23rem;
  top: 1rem;
  z-index: 99;
}
@media only screen and (max-width: 37.5em) {
  .heading__tab {
    width: 30rem;
    left: 6rem;
    top: 10rem;
  }
}
.heading__more {
  width: 9rem;
  height: 3rem;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading__more::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "查看更多+";
  font-size: 1.2rem;
  color: #471900;
  font-weight: 400;
  background-color: #f5efe2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading__more::before {
  display: block;
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: -5px;
  right: -5px;
  z-index: -5;
  border: 1px solid #e3d2a8;
  transition: 0.3s ease-in-out;
}
.heading__more--white::after {
  color: #471900;
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(62, 44, 15, 0.09);
}
.heading__more--yellow::after {
  color: #fff;
  background-color: #ff9700;
  box-shadow: 0px 0px 6px 0px rgba(62, 44, 15, 0.09);
}
.heading__more:hover::before {
  left: -2px;
  top: -2px;
  bottom: -2px;
  right: -2px;
}

.pd-hg {
  padding: 7rem;
}
@media only screen and (max-width: 75em) {
  .pd-hg {
    padding: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-hg {
    padding: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-hg {
    padding: 2.8rem;
  }
}

.pt-hg {
  padding-top: 7rem;
}
@media only screen and (max-width: 75em) {
  .pt-hg {
    padding-top: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-hg {
    padding-top: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-hg {
    padding-top: 2.8rem;
  }
}

.pr-hg {
  padding-right: 7rem;
}
@media only screen and (max-width: 75em) {
  .pr-hg {
    padding-right: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-hg {
    padding-right: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-hg {
    padding-right: 2.8rem;
  }
}

.pb-hg {
  padding-bottom: 7rem;
}
@media only screen and (max-width: 75em) {
  .pb-hg {
    padding-bottom: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-hg {
    padding-bottom: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-hg {
    padding-bottom: 2.8rem;
  }
}

.pl-hg {
  padding-left: 7rem;
}
@media only screen and (max-width: 75em) {
  .pl-hg {
    padding-left: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-hg {
    padding-left: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-hg {
    padding-left: 2.8rem;
  }
}

.mt-hg {
  margin-top: 7rem;
}
@media only screen and (max-width: 75em) {
  .mt-hg {
    margin-top: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-hg {
    margin-top: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-hg {
    margin-top: 2.8rem;
  }
}

.mr-hg {
  margin-right: 7rem;
}
@media only screen and (max-width: 75em) {
  .mr-hg {
    margin-right: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-hg {
    margin-right: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-hg {
    margin-right: 2.8rem;
  }
}

.mb-hg {
  margin-bottom: 7rem;
}
@media only screen and (max-width: 75em) {
  .mb-hg {
    margin-bottom: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-hg {
    margin-bottom: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-hg {
    margin-bottom: 2.8rem;
  }
}

.ml-hg {
  margin-left: 7rem;
}
@media only screen and (max-width: 75em) {
  .ml-hg {
    margin-left: 5.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-hg {
    margin-left: 4.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-hg {
    margin-left: 2.8rem;
  }
}

.pd-lg {
  padding: 5rem;
}
@media only screen and (max-width: 75em) {
  .pd-lg {
    padding: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-lg {
    padding: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-lg {
    padding: 2rem;
  }
}

.pt-lg {
  padding-top: 5rem;
}
@media only screen and (max-width: 75em) {
  .pt-lg {
    padding-top: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-lg {
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-lg {
    padding-top: 2rem;
  }
}

.pr-lg {
  padding-right: 5rem;
}
@media only screen and (max-width: 75em) {
  .pr-lg {
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-lg {
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-lg {
    padding-right: 2rem;
  }
}

.pb-lg {
  padding-bottom: 5rem;
}
@media only screen and (max-width: 75em) {
  .pb-lg {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-lg {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-lg {
    padding-bottom: 2rem;
  }
}

.pl-lg {
  padding-left: 5rem;
}
@media only screen and (max-width: 75em) {
  .pl-lg {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-lg {
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-lg {
    padding-left: 2rem;
  }
}

.mt-lg {
  margin-top: 5rem;
}
@media only screen and (max-width: 75em) {
  .mt-lg {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-lg {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-lg {
    margin-top: 2rem;
  }
}

.mr-lg {
  margin-right: 5rem;
}
@media only screen and (max-width: 75em) {
  .mr-lg {
    margin-right: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-lg {
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-lg {
    margin-right: 2rem;
  }
}

.mb-lg {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 75em) {
  .mb-lg {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-lg {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-lg {
    margin-bottom: 2rem;
  }
}

.ml-lg {
  margin-left: 5rem;
}
@media only screen and (max-width: 75em) {
  .ml-lg {
    margin-left: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-lg {
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-lg {
    margin-left: 2rem;
  }
}

.pd-md {
  padding: 3rem;
}
@media only screen and (max-width: 75em) {
  .pd-md {
    padding: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-md {
    padding: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-md {
    padding: 1.2rem;
  }
}

.pt-md {
  padding-top: 3rem;
}
@media only screen and (max-width: 75em) {
  .pt-md {
    padding-top: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-md {
    padding-top: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-md {
    padding-top: 1.2rem;
  }
}

.pr-md {
  padding-right: 3rem;
}
@media only screen and (max-width: 75em) {
  .pr-md {
    padding-right: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-md {
    padding-right: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-md {
    padding-right: 1.2rem;
  }
}

.pb-md {
  padding-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .pb-md {
    padding-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-md {
    padding-bottom: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-md {
    padding-bottom: 1.2rem;
  }
}

.pl-md {
  padding-left: 3rem;
}
@media only screen and (max-width: 75em) {
  .pl-md {
    padding-left: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-md {
    padding-left: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-md {
    padding-left: 1.2rem;
  }
}

.mt-md {
  margin-top: 3rem;
}
@media only screen and (max-width: 75em) {
  .mt-md {
    margin-top: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-md {
    margin-top: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-md {
    margin-top: 1.2rem;
  }
}

.mr-md {
  margin-right: 3rem;
}
@media only screen and (max-width: 75em) {
  .mr-md {
    margin-right: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-md {
    margin-right: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-md {
    margin-right: 1.2rem;
  }
}

.mb-md {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .mb-md {
    margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-md {
    margin-bottom: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-md {
    margin-bottom: 1.2rem;
  }
}

.ml-md {
  margin-left: 3rem;
}
@media only screen and (max-width: 75em) {
  .ml-md {
    margin-left: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-md {
    margin-left: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-md {
    margin-left: 1.2rem;
  }
}

.pd-sm {
  padding: 2rem;
}
@media only screen and (max-width: 75em) {
  .pd-sm {
    padding: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-sm {
    padding: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-sm {
    padding: 0.8rem;
  }
}

.pt-sm {
  padding-top: 2rem;
}
@media only screen and (max-width: 75em) {
  .pt-sm {
    padding-top: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-sm {
    padding-top: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-sm {
    padding-top: 0.8rem;
  }
}

.pr-sm {
  padding-right: 2rem;
}
@media only screen and (max-width: 75em) {
  .pr-sm {
    padding-right: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-sm {
    padding-right: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-sm {
    padding-right: 0.8rem;
  }
}

.pb-sm {
  padding-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .pb-sm {
    padding-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-sm {
    padding-bottom: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-sm {
    padding-bottom: 0.8rem;
  }
}

.pl-sm {
  padding-left: 2rem;
}
@media only screen and (max-width: 75em) {
  .pl-sm {
    padding-left: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-sm {
    padding-left: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-sm {
    padding-left: 0.8rem;
  }
}

.mt-sm {
  margin-top: 2rem;
}
@media only screen and (max-width: 75em) {
  .mt-sm {
    margin-top: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-sm {
    margin-top: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-sm {
    margin-top: 0.8rem;
  }
}

.mr-sm {
  margin-right: 2rem;
}
@media only screen and (max-width: 75em) {
  .mr-sm {
    margin-right: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-sm {
    margin-right: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-sm {
    margin-right: 0.8rem;
  }
}

.mb-sm {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .mb-sm {
    margin-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-sm {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-sm {
    margin-bottom: 0.8rem;
  }
}

.ml-sm {
  margin-left: 2rem;
}
@media only screen and (max-width: 75em) {
  .ml-sm {
    margin-left: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-sm {
    margin-left: 1.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-sm {
    margin-left: 0.8rem;
  }
}

.pd-mn {
  padding: 1rem;
}
@media only screen and (max-width: 75em) {
  .pd-mn {
    padding: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pd-mn {
    padding: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pd-mn {
    padding: 0.4rem;
  }
}

.pt-mn {
  padding-top: 1rem;
}
@media only screen and (max-width: 75em) {
  .pt-mn {
    padding-top: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pt-mn {
    padding-top: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pt-mn {
    padding-top: 0.4rem;
  }
}

.pr-mn {
  padding-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .pr-mn {
    padding-right: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pr-mn {
    padding-right: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pr-mn {
    padding-right: 0.4rem;
  }
}

.pb-mn {
  padding-bottom: 1rem;
}
@media only screen and (max-width: 75em) {
  .pb-mn {
    padding-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pb-mn {
    padding-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pb-mn {
    padding-bottom: 0.4rem;
  }
}

.pl-mn {
  padding-left: 1rem;
}
@media only screen and (max-width: 75em) {
  .pl-mn {
    padding-left: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .pl-mn {
    padding-left: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .pl-mn {
    padding-left: 0.4rem;
  }
}

.mt-mn {
  margin-top: 1rem;
}
@media only screen and (max-width: 75em) {
  .mt-mn {
    margin-top: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mt-mn {
    margin-top: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mt-mn {
    margin-top: 0.4rem;
  }
}

.mr-mn {
  margin-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .mr-mn {
    margin-right: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mr-mn {
    margin-right: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mr-mn {
    margin-right: 0.4rem;
  }
}

.mb-mn {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 75em) {
  .mb-mn {
    margin-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .mb-mn {
    margin-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .mb-mn {
    margin-bottom: 0.4rem;
  }
}

.ml-mn {
  margin-left: 1rem;
}
@media only screen and (max-width: 75em) {
  .ml-mn {
    margin-left: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .ml-mn {
    margin-left: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .ml-mn {
    margin-left: 0.4rem;
  }
}

.percent {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.percent__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 800;
  color: #471900;
}
.percent__text::after {
  content: "%";
  font-size: 1.4rem;
}

.ratio-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  box-sizing: border-box;
  position: relative;
}
.ratio-image--1-of-2, .ratio-image--2-of-4 {
  padding-bottom: 50%;
}
.ratio-image--1-of-3 {
  padding-bottom: 33.33%;
}
.ratio-image--2-of-3 {
  padding-bottom: 66.66%;
}
.ratio-image--1-of-4 {
  padding-bottom: 25%;
}
.ratio-image--3-of-4 {
  padding-bottom: 75%;
}
.ratio-image--1-of-5 {
  padding-bottom: 20%;
}
.ratio-image--2-of-5 {
  padding-bottom: 40%;
}
.ratio-image--3-of-5 {
  padding-bottom: 60%;
}
.ratio-image--4-of-5 {
  padding-bottom: 80%;
}
.ratio-image__box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.ratio-image__source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-button {
  font-size: 1.6rem;
  color: #666666;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.more-button:hover {
  color: #471900;
  font-weight: 600;
}
.more-button::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/more-icon.png) no-repeat center center/cover;
  margin-right: 4px;
}
.more-button::after {
  content: "";
  font-family: "iconfont";
  content: "";
  margin-left: 4px;
  font-size: 1.8rem;
}

.card {
  position: relative;
}
.card--horizontal {
  display: flex;
}
.card:hover .cover img {
  transform: scale(1.05);
}
.card:hover .info .title,
.card:hover .info .desc {
  color: #C44E2A;
}
.card > .cover {
  flex: none;
  overflow: hidden;
}
.card > .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.card .info h2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 1.5rem;
}
.card .info p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #888888;
}
.card--horizontal .info {
  padding-left: 2rem;
}
.card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.text-card {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.text-card:hover .title {
  color: #471900;
}
.text-card:hover .date {
  color: #471900;
}
.text-card--secondary:hover .title {
  color: #C44E2A;
}
.text-card--secondary:hover .date {
  color: #C44E2A;
}
.text-card > .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;
  font-size: 1.6rem;
  color: #111;
}
.text-card > .date {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #888888;
  flex: none;
  font-family: tm;
}
.text-card > .date-box {
  flex: none;
}
.text-card > .date-box .main {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #471900;
  line-height: 1;
  padding-bottom: 0.6rem;
  font-family: tm;
}
.text-card > .date-box .sub {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #471900;
  line-height: 1;
  font-family: tm;
}
.text-card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.mission-card {
  outline: 1px solid #af2d05;
  outline-offset: -6px;
  background: url(../images/misiion-bg.png) no-repeat center center/100% 100%;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.mission-card::after {
  content: "";
  display: block;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: url(../images/icon-3.png) no-repeat center center/cover;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  transform: translate3d(100%, 0, 0);
  transition: 0.3s ease-in-out;
}
.mission-card:hover {
  background: url(../images/misiion-bg-active.png) no-repeat center center/100% 100%;
  outline: 1px solid #dc7555;
  transform: translateY(-1.2rem);
}
.mission-card:hover::after {
  transform: translate3d(0, 0, 0);
}
.mission-card:hover .mission-card__top::after {
  border-bottom: 1px dashed #fff;
}
.mission-card:hover .mission-card__top .title {
  color: #ffffff;
}
.mission-card:hover .mission-card__bottom .tips .text {
  color: #ffffff;
}
.mission-card:hover .mission-card__bottom .tips .text::before {
  background-color: #ffffff;
  color: #af2d05;
}
.mission-card__top {
  padding: 2rem 2.5rem;
  position: relative;
}
.mission-card__top::after {
  content: "";
  display: block;
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 0;
  height: 1px;
  border-bottom: 1px dashed #666;
}
.mission-card__top .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
  font-weight: 400;
  line-height: 2.5rem;
  height: 5rem;
}
.mission-card__bottom {
  padding: 2rem 2.5rem;
}
.mission-card__bottom .tips .text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #666;
  position: relative;
  padding-left: 3rem;
}
.mission-card__bottom .tips .text:not(:last-child) {
  margin-bottom: 0.5rem;
}
.mission-card__bottom .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #471900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #fff;
}
.mission-card__bottom .tips .text--user::before {
  content: "";
}
.mission-card__bottom .tips .text--date::before {
  content: "";
}
.mission-card__bottom .tips .text--address::before {
  content: "";
}

.mission-card-2 {
  outline: 1px solid #A52B05;
  outline-offset: -9px;
  background: url(../images/inner-card-bg.png) no-repeat center center/100% 100%;
}
.mission-card-2:hover {
  outline: 1px solid #F6E8C3;
  background: url(../images/inner-card-bg-active.png) no-repeat center center/100% 100%;
}
.mission-card-2:hover .mission-card-2__top::after {
  border-bottom: 1px dashed #fff;
}
.mission-card-2:hover .mission-card-2__top .title,
.mission-card-2:hover .mission-card-2__top .desc {
  color: #ffffff;
}
.mission-card-2:hover .mission-card-2__bottom .tips .text {
  color: #ffffff;
}
.mission-card-2:hover .mission-card-2__bottom .tips .text::before {
  color: #FFB900;
}
.mission-card-2__top {
  padding: 2rem 2.5rem;
  position: relative;
}
.mission-card-2__top::after {
  content: "";
  display: block;
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 0;
  height: 1px;
  border-bottom: 1px dashed #666;
}
.mission-card-2__top .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
  font-weight: 400;
  line-height: 2.5rem;
  height: 5rem;
  margin-bottom: 2rem;
}
.mission-card-2__top .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #888;
  font-weight: 400;
  line-height: 2rem;
  height: 6rem;
}
.mission-card-2__bottom {
  padding: 2rem 2.5rem;
}
.mission-card-2__bottom .tips .text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #666;
  position: relative;
  padding-left: 3rem;
}
.mission-card-2__bottom .tips .text:not(:last-child) {
  margin-bottom: 0.5rem;
}
.mission-card-2__bottom .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #A52B05;
}
.mission-card-2__bottom .tips .text--user::before {
  content: "";
}
.mission-card-2__bottom .tips .text--date::before {
  content: "";
}
.mission-card-2__bottom .tips .text--address::before {
  content: "";
}

.center-card {
  overflow: hidden;
}
.center-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 9;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: 0.2s ease-in-out;
}
.center-card:hover::before {
  transform: translateX(100%);
}
.center-card__text {
  width: 50%;
  position: absolute;
  left: 3rem;
  top: 35%;
  font-size: 1.6rem;
  color: #ffffff;
}

.image-card-1 .cover {
  width: 21rem;
  height: 12rem;
}
.image-card-1__date {
  padding: 3px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b80404;
  font-size: 12px;
  color: #fff;
  position: absolute;
  left: 0;
  z-index: 99;
  top: 1rem;
}

.image-card-2 .cover {
  width: 100%;
  height: 15rem;
}
.image-card-2 .info {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  transform: translateY(50%);
  background-color: #471900;
}
.image-card-2 .info .title {
  padding: 1rem 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
.image-card-2:hover .info .title {
  color: #fff;
}

.image-card-3 .cover {
  width: 100%;
  height: 35rem;
}
.image-card-3__date {
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b80404;
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  left: 0;
  z-index: 99;
  top: 2rem;
}
.image-card-3 .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #471900;
}
.image-card-3 .info .title {
  padding: 1rem 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
.image-card-3:hover .info .title {
  color: #fff;
}

.image-card-4 {
  padding: 2rem;
  position: relative;
}
.image-card-4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 7.5rem;
  background: #ffffff;
  border-bottom: 2px solid #003d87;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.image-card-4 .cover {
  width: 12rem;
  height: 16rem;
}
.image-card-4 .info {
  align-self: center;
}
.image-card-4 .info .title {
  margin-bottom: 2rem;
}
.image-card-4 .info .title strong {
  font-size: 2.4rem;
}
.image-card-4 .info .title span {
  font-size: 1.6rem;
}
.image-card-4 .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  line-height: 3rem;
  height: 9rem;
}

.text-card-1 {
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.08);
  border-left: 2px solid #471900;
}
.text-card-1 .title {
  padding-left: 2rem;
  border-left: 1px solid #e7e7e7;
}
.text-card-1 .date-box {
  padding: 0 1rem;
  padding-right: 2rem;
}

.text-card-2 {
  margin: 0.5rem;
}

.text-card-3 {
  margin: 0.5rem;
  flex-direction: row-reverse;
}
.text-card-3 .date {
  background-color: #e8e8e8;
  padding: 1px 1rem;
  border-radius: 100px;
  margin-right: 2rem;
  margin-left: 0;
}

.text-card-4 {
  padding: 2rem;
  background-color: #fff;
  border-left: 2px solid #471900;
}
.text-card-4 .date-box {
  background-color: #e8e8e8;
  margin-right: 2rem;
}
.text-card-4 .date-box .main {
  padding: 8px 0;
}
.text-card-4 .date-box .sub {
  padding: 3px 5px;
  background-color: #471900;
  color: #fff;
}

.text-card-5 {
  margin: 1.2rem 0;
  flex-direction: row-reverse;
}
.text-card-5 .date {
  background-color: #e8e8e8;
  padding: 1px 1rem;
  border-radius: 100px;
  margin-right: 2rem;
  margin-left: 0;
}

.text-card-6 {
  padding: 1.6rem 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.text-card-6::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  font-size: 1.6rem;
  color: #333;
  right: 2rem;
}
.text-card-6:hover {
  background-color: #471900;
  border-bottom: 3px solid #be0404;
}
.text-card-6:hover::after {
  color: #ffffff;
}
.text-card-6:hover .date-box .main {
  color: #ffffff;
}
.text-card-6:hover .date-box .sub {
  color: #ffffff;
}
.text-card-6:hover .title {
  color: #ffffff;
}
.text-card-6 .title {
  padding-right: 4rem;
}
.text-card-6 .date-box {
  margin-right: 2rem;
  border-right: 1px solid #f2f2f2;
}
.text-card-6 .date-box .main {
  padding: 8px 0;
  font-size: 2.2rem;
  padding: 0 2rem;
}
.text-card-6 .date-box .sub {
  padding: 3px 5px;
  font-size: 1.4rem;
}

.picture-card {
  padding: 1rem;
  padding-bottom: 0;
  background: #ffffff;
  border-bottom: 4px solid #fff;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
  transition: 0.1s ease-in-out;
}
.picture-card__text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
  line-height: 3.4;
  padding: 0 1rem;
}
.picture-card:hover {
  background-color: #471900;
  border-bottom: 4px solid #be0404;
}
.picture-card:hover .picture-card__text {
  color: #ffffff;
}

.active-card__text {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  background: #ffffff;
  border-left: 4px solid #471900;
  transform: translateY(50%);
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0 1rem;
  line-height: 5.5rem;
  font-size: 1.6rem;
  color: #2f2f2f;
}
.activity-class-card {
  position: relative;
  padding: 3rem;
  border-radius: 2px;
  background-color: #f1f3fb;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.activity-class-card:hover {
  transform: translateY(-1rem);
  background: linear-gradient(90deg, #124fa0, #3887f0);
}
.activity-class-card:hover .left .date-box .main {
  color: #ffffff;
}
.activity-class-card:hover .left .date-box .sub {
  color: #ffffff;
}
.activity-class-card:hover .left .tag {
  background-color: #f1f3fb;
  color: #471900;
}
.activity-class-card:hover .right .title {
  color: #ffffff;
}
.activity-class-card:hover .right .more {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.activity-class-card .left {
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.activity-class-card .left .date-box {
  padding-bottom: 0.5rem;
}
.activity-class-card .left .date-box .main {
  font-size: 2.4rem;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}
.activity-class-card .left .date-box .sub {
  font-size: 1.6rem;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}
.activity-class-card .left .tag {
  display: block;
  width: max-content;
  background-color: #124fa0;
  font-size: 1.4rem;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 2px;
}
.activity-class-card .right {
  flex: 1;
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.activity-class-card .right::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 5rem;
  border-left: 1px solid #e7e7e7;
}
.activity-class-card .right .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #111;
}
.activity-class-card .right .more {
  display: block;
  padding: 0 5px;
  border: 1px solid #6f7e89;
  align-self: flex-end;
  opacity: 0.5;
  border-radius: 100px;
  font-size: 1.2rem;
  color: #6f7e89;
  margin-top: 1rem;
}
.activity-class-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.news-card .date-box {
  position: absolute;
  left: 2rem;
  top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.news-card .date-box .main {
  font-size: 2.8rem;
  font-weight: 400;
  color: #471900;
  font-family: "tm-bold";
}
.news-card .date-box .sub {
  padding: 0 1rem;
  font-size: 1.3rem;
  background-color: #471900;
  color: #ffffff;
  font-family: "tm-bold";
}
.news-card .cover {
  height: 35rem;
  overflow: hidden;
}
.news-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  padding-right: 10rem;
  background-color: rgba(0, 0, 0, 0.7);
}
.news-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1;
  margin-bottom: 0;
  color: #ffffff;
}
.news-card:hover .info .title {
  color: #e7e7e7;
}

.news-text-card {
  padding: 1rem 2rem;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}
.news-text-card:hover {
  background: linear-gradient(90deg, #124fa0, #3887f0);
}
.news-text-card:hover .date-box .main {
  color: #ffffff;
}
.news-text-card:hover .date-box .sub {
  color: #ffffff;
}
.news-text-card:hover .title {
  color: #ffffff;
}
.news-text-card .date-box {
  padding-right: 1rem;
}
.news-text-card .date-box .main {
  font-size: 2rem;
  color: #333;
}
.news-text-card .date-box .sub {
  font-size: 1.4rem;
  color: #666;
}
.news-text-card .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 5rem;
  line-height: 2.5rem;
  font-size: 1.5rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 4rem;
  position: relative;
}
.news-text-card .title::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  border-top: 1px solid #8c8c8c;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.image-card-dt .cover {
  height: 37rem;
  border: 2px solid #e3d2a8;
}
.image-card-dt__date {
  background-color: #9c5c47;
  font-size: 1.6rem;
  color: #e3d2a8;
  position: absolute;
  padding: 5px 1rem;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 99;
}
.image-card-dt .info {
  padding-top: 1.2rem;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.image-card-dt .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
  color: #fff;
}
.image-card-dt:hover .info .title {
  color: #fff;
}

.text-card-dt {
  padding: 0.9rem 3rem;
}
.text-card-dt .date {
  color: #ae3009;
}
.text-card-dt:hover {
  background-color: #9c5c47;
}
.text-card-dt:hover .title {
  color: #fff;
}
.text-card-dt:hover .date {
  color: #fff;
}

.text-card-tz {
  display: flex;
  padding: 0;
  border: 1px solid #e3d2a8;
  transition: 0.3s ease-in-out;
}
.text-card-tz .date-box {
  flex: none;
  width: 7rem;
  height: 8rem;
  border-right: 1px solid #e3d2a8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: tm-bold;
  background: url(../images/date-bg.png) no-repeat center center/115%;
  transition: 0.3s ease-in-out;
}
.text-card-tz .date-box .main {
  color: #af2d05;
  font-size: 3.4rem;
}
.text-card-tz .date-box .info {
  color: #af2d05;
  font-size: 1.6rem;
}
.text-card-tz .info {
  height: 8rem;
  padding: 0 2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
.text-card-tz .info::before {
  content: "";
  display: block;
  width: 72px;
  height: 37px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/date-lt.png) no-repeat center center/cover;
}
.text-card-tz .info::after {
  content: "";
  display: block;
  width: 72px;
  height: 37px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/date-rb.png) no-repeat center center/cover;
}
.text-card-tz .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
}
.text-card-tz:hover {
  transform: translateY(-1.1rem);
  box-shadow: 0 10px 20px #ccc;
}
.text-card-tz:hover .date-box {
  background: url(../images/date-bg-active.png) no-repeat center center/115%;
}
.text-card-tz:hover .date-box .main {
  color: #fff;
}
.text-card-tz:hover .date-box .sub {
  color: #fff;
}
.text-card-tz:hover .info::before {
  background: url(../images/date-lt-active.png) no-repeat center center/cover;
}
.text-card-tz:hover .info::after {
  background: url(../images/date-rb-active.png) no-repeat center center/cover;
}
.text-card-tz:hover .info .title {
  color: #9c5c47;
}

.text-card-jx {
  padding: 0.7rem 0;
}
.text-card-jx .date {
  padding: 2px 1rem;
  color: #C44E2A;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.text-card-jx:hover .title {
  color: #C44E2A;
}
.text-card-jx:hover .date {
  background-color: #C44E2A;
  color: #fff;
}

.text-card-ky {
  padding: 0;
}
.text-card-ky .date-box {
  font-family: tm-bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-card-ky .date-box .main {
  padding: 0.4rem;
  width: 6.2rem;
  font-size: 2.8rem;
  color: #C44E2A;
  background-color: #fff;
}
.text-card-ky .date-box .sub {
  width: 6.2rem;
  height: 2.3rem;
  background-color: #C44E2A;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-card-ky .info {
  flex: 1;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-card-ky .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 1rem;
}
.text-card-ky .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.3rem;
  color: rgba(17, 17, 17, 0.6);
}
.text-card-ky:hover .title {
  color: #C44E2A;
}
.text-card-ky:hover .desc {
  color: #C44E2A;
}

.image-card-dz {
  display: flex;
  width: 100%;
}
.image-card-dz .cover {
  width: 23rem;
  height: 14rem;
}
.image-card-dz .info {
  flex: 1;
  padding: 2.3rem;
  background-color: #fff;
}
.image-card-dz__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image-card-dz__bottom .date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 2.5rem;
  background: rgba(255, 216, 0, 0.22);
  border-radius: 12px;
  font-size: 1.3rem;
  color: #af2d05;
}
.image-card-dz__bottom .more {
  font-size: 1.2rem;
  color: #999999;
}

.text-card-dj {
  padding: 1.6rem 1.2rem;
  background-color: #fff;
  border: 1px solid #e3d2a8;
}
.text-card-dj .date {
  margin-left: 0;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 2.5rem;
  background: rgba(255, 216, 0, 0.22);
  border-radius: 12px;
  font-size: 1.3rem;
  color: #af2d05;
}
.text-card-dj:hover .title {
  color: #C44E2A;
}

.text-card-jxxx {
  height: 6rem;
  padding: 0 2rem;
  background: #fffcf5;
  border: 1px solid #fef0e5;
  position: relative;
  transition: 0.3s ease-in-out;
}
.text-card-jxxx .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 400;
}
.text-card-jxxx .date {
  color: #9c5c47;
}
.text-card-jxxx .tag {
  position: absolute;
  left: 2rem;
  top: 0;
  transform: translateY(-50%);
  padding: 2px 2rem;
  background: #af4824;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
}
.text-card-jxxx:hover {
  background: #a95c4d;
  border: 1px solid #a95c4d;
  box-shadow: 0px 5px 8px 0px rgba(160, 26, 16, 0.58);
}
.text-card-jxxx:hover .title,
.text-card-jxxx:hover .date {
  color: #fff;
}
.text-card-jxxx:hover .tag {
  background-color: #fff;
  border: 1px solid #af4824;
  color: #af4824;
}

.text-card-zsxx {
  padding: 1.8rem 2rem;
  background: #fffcf5;
  border: 1px solid #fef0e5;
}
.text-card-zsxx .date-box .main {
  font-size: 2.4rem;
  color: #9c5d47;
}
.text-card-zsxx .date-box .sub {
  padding: 4px 1rem;
  background: #af4824;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
}
.text-card-zsxx .info {
  padding-left: 2rem;
}
.text-card-zsxx .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.text-card-zsxx .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: rgba(17, 17, 17, 0.6);
}
.text-card-zsxx:hover {
  background: #a95c4d;
  border: 1px solid #a95c4d;
  box-shadow: 0px 5px 8px 0px rgba(160, 26, 16, 0.58);
}
.text-card-zsxx:hover .title,
.text-card-zsxx:hover .main,
.text-card-zsxx:hover .desc {
  color: #fff;
}
.text-card-zsxx:hover .sub {
  background-color: #fff;
  border: 1px solid #af4824;
  color: #af4824;
}

.image-card-xs {
  background: url(../images/bg-1.png) no-repeat center center/cover;
  border-radius: 1rem;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.image-card-xs .date-box {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 76px;
  background: url(../images/icon-1.png) no-repeat center center/cover;
}
.image-card-xs .date-box .main {
  font-family: tm-bold;
  line-height: 1;
  font-size: 34px;
  color: #744e00;
}
.image-card-xs .date-box .sub {
  line-height: 1;
  font-family: tm-bold;
  line-height: 1;
  font-size: 15px;
  color: #744e00;
}
.image-card-xs .info {
  padding: 2rem;
}
.image-card-xs .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #333;
}
.image-card-xs .info .desc {
  font-size: 1.4rem;
  color: #666;
}
.image-card-xs:hover {
  transform: translateY(-1.2rem);
}
.image-card-xs:hover .date-box {
  background: url(../images/icon-1-active.png) no-repeat center center/cover;
}
.image-card-xs:hover .date-box .main,
.image-card-xs:hover .date-box .sub {
  color: #fff;
}

.text-card-xs {
  padding: 2rem;
  background: url(../images/bg-1.png) no-repeat center center/cover;
}
.text-card-xs .date {
  font-size: 1.6rem;
  color: #9C5C47;
}
.text-card-xs .title {
  line-height: 1;
  font-size: 1.6rem;
}

.teacher-card {
  padding: 1.8rem;
  background: url(../images/teacher-bg.png) no-repeat center center/100% 100%;
  display: flex;
  transition: 0.1s ease-in-out;
}
.teacher-card .cover {
  flex: none;
  width: 12rem;
  height: 16rem;
  border: 2px solid #fff;
}
.teacher-card .info {
  flex: 1;
  padding-left: 2rem;
}
.teacher-card .info .title {
  color: #A52B05;
}
.teacher-card .info .title strong {
  font-size: 2.4rem;
}
.teacher-card .info .title span {
  font-size: 1.6rem;
}
.teacher-card .info .desc {
  font-size: 1.6rem;
  color: #111;
}
.teacher-card:hover {
  background: url(../images/teacher-bg-active.png) no-repeat center center/100% 100%;
}
.teacher-card:hover .info .title {
  color: #fff;
}
.teacher-card:hover .info .desc {
  color: #fff;
}

.inner-banner {
  height: 45rem;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-banner__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 140rem;
  color: #ffffff;
}
.inner-banner h2 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-banner h2 {
    font-size: 2.8rem;
  }
}
.inner-banner h3 {
  font-size: 3.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 56.25em) {
  .inner-banner h3 {
    font-size: 1.6rem;
  }
}

.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.8rem;
  background: url(../images/line-3.png) no-repeat bottom center/100%;
}
@media only screen and (max-width: 56.25em) {
  .custom-breadcrumb {
    display: none;
  }
}
.custom-breadcrumb .title {
  font-size: 2rem;
  color: #471900;
  font-weight: 900;
  position: relative;
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #2f2f2f;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "";
  font-size: 1.4rem;
  color: #471900;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #2f2f2f;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "";
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}
.custom-breadcrumb .breadcrumb-navs nav a:first-child::before {
  display: none;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover {
  color: #471900;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #2f2f2f;
}

.form-item {
  height: 100%;
}
.form-item--error input, .form-item--error textarea {
  outline: 2px solid #f56c6c !important;
}
.form-item--error small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item--success input, .form-item--success textarea {
  outline: 2px solid #67c23a !important;
}
.form-item--success small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item input {
  width: 100%;
  padding: 0 2rem;
  height: 100%;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item textarea {
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item a,
.form-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #471900;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form-item a:active,
.form-item button:active {
  filter: brightness(0.8);
}
.form-item small {
  color: #f56c6c;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

.custom-search__open {
  display: none;
}
.custom-search__open .iconfont {
  font-size: 2.5rem;
  color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  .custom-search__open {
    display: block;
  }
}
.custom-search__content {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .custom-search__content {
    display: none;
    position: absolute;
    top: 5rem;
    right: -1rem;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.6);
  }
}

.search-input {
  display: flex;
  align-items: center;
  border: 2px solid #471900;
  border-radius: 6px;
  overflow: hidden;
}
.search-input__input {
  width: 20rem;
  padding: 0 1rem;
  height: 3.6rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #471900;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 100%;
    height: 6rem;
    color: #ffffff;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.search-input__button:hover {
  background-color: #471900;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 6rem;
    height: 6rem;
  }
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  font-size: 2rem;
  color: #471900;
}
@media only screen and (max-width: 75em) {
  .search-input__button::after {
    color: #ffffff;
  }
}
.search-input__button:hover::after {
  color: #ffffff;
}

.custom-selector {
  width: 100%;
  height: 4rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #471900;
}
.custom-selector__input::after {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(255, 255, 255, 0.6);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.custom-selector__placeholder {
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #ffffff;
  overflow: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.custom-selector__options {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 999;
  display: none;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.custom-selector__options a {
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  border: 4px;
  color: #ffffff;
  line-height: 2;
  transition: 0.1s ease-in-out;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}
.custom-selector__options a:last-child {
  border-bottom: none;
}
.custom-selector__options a:hover {
  background-color: #471900;
  color: #ffffff;
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 8rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #471900;
  border-radius: 50%;
  background-color: #471900;
  color: #ffffff;
  transition: 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
.back-top-menu .iconfont {
  font-size: 20px;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #471900;
  border: 3px solid #471900;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d:hover {
  color: #471900;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #471900;
  color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a:hover {
  color: #471900;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot:hover {
  color: #471900;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a:hover {
  color: #471900;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
  font-size: 12px;
  color: #5a5a5a;
  line-height: 26px;
  padding: 0 10px;
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto input#u6_goto.p_goto_input {
  width: 40px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  text-align: center;
  font-size: 12px;
  color: #5a5a5a;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #471900;
  color: #ffffff;
}

.popover {
  position: relative;
  display: inline-block;
}
.popover__title {
  display: inline-block;
}
.popover__content {
  position: absolute;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  right: 0;
  bottom: 0;
  z-index: 999;
  transform: translate3d(0, 110%, 0);
}

.article-details {
  background-color: #ffffff;
}
.article-details__heading {
  padding: 2rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #A52B05;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .article-details__heading {
    font-size: 1.8rem;
  }
}
.article-details__describe {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #FFF6DE;
}
@media only screen and (max-width: 56.25em) {
  .article-details__describe {
    display: none;
  }
}
.article-details__tag {
  font-size: 1.4rem;
  color: #471900;
  margin: 0 1rem;
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #2f2f2f;
}
.article-details__content p span{
    word-break: break-all;
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  margin: 2rem 0;
}

.article-prev-next {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
}
.article-prev-next a {
  display: block;
  padding: 0.5rem 3rem;
  background-color: #FFF6DE;
  font-size: 1.6rem;
  color: #471900;
}
.article-prev-next a.prev {
  content: "<<";
}
.article-prev-next a.next {
  content: ">>";
}

.container {
  width: 100%;
  max-width: 140rem;
  padding: 0 8rem;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .container {
    padding: 0 5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .container {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .container {
    padding: 0 1rem;
  }
}

.row {
  max-width: 140rem;
  margin: 0 auto;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row [class^=col-].mr0 {
  margin-right: 0 !important;
}
.row .col-1-of-2 {
  width: calc((100% - 5rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 5rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 5rem) / 3) + 5rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 5rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 5rem) / 4) + 5rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 5rem) / 4) + 2 * 5rem);
}
.row .col-1-of-5 {
  width: calc((100% - 4 * 5rem) / 5);
}
.row .col-2-of-5 {
  width: calc(2 * ((100% - 5 * 5rem) / 5) + 5rem);
}
.row .col-3-of-5 {
  width: calc(3 * ((100% - 5 * 5rem) / 5) + 2 * 5rem);
}
.row .col-4-of-5 {
  width: calc(4 * ((100% - 4 * 5rem) / 5) + 3 * 5rem);
}

.gallery {
  display: grid;
  grid-template-rows: repeat(4, 5rem);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .gallery {
    grid-template-rows: repeat(5, 5rem);
  }
}
.gallery__item--1 {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--1 {
    grid-row: 1/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--2 {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--2 {
    grid-row: 2/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--3 {
  grid-row: 2/span 2;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--3 {
    grid-row: 3/span 2;
  }
}
.gallery__item--4 {
  grid-row: 4/span 1;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item--4 {
    grid-row: 5/span 1;
  }
}

.row-list--2 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.row-list--2 > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .row-list--2 > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .row-list--2 > .item {
    width: calc((1 / 1) * 100%);
  }
}
.row-list--3 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.row-list--3 > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .row-list--3 > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .row-list--3 > .item {
    width: calc((1 / 1) * 100%);
  }
}
.row-list--4 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.row-list--4 > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .row-list--4 > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .row-list--4 > .item {
    width: calc((1 / 1) * 100%);
  }
}

@media only screen and (max-width: 75em) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 99999;
  }
}
.header__top {
  background: #ffffff url(../images/header-bg.png) no-repeat center center/cover;
}
.header__top-container {
  padding: 2rem 0;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .header__top-container {
    padding: 1rem 0;
  }
}
.header__top-bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  height: 100%;
  width: auto;
}
.header__bottom {
  background: #471900 url(../images/line-1.png) no-repeat bottom center/100%;
  padding-bottom: 8px;
}
@media only screen and (max-width: 75em) {
  .header__bottom {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: #471900;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
}
.header__bottom.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.header__bottom .container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.header__logo img {
  display: block;
  width: auto;
  max-width: 1000px;
}
@media only screen and (max-width: 75em) {
  .header__logo img {
    width: auto;
    height: 8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .header__logo img {
    width: auto;
    height: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__logo img {
    width: auto;
    height: 4rem;
  }
}
.header__nav-open {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #141414;
  line-height: 6rem;
  text-align: center;
  display: none;
  z-index: 9;
}
@media only screen and (max-width: 75em) {
  .header__nav-open {
    display: block;
  }
}
@media only screen and (max-width: 75em) {
  .header__nav-open {
    font-size: 3rem;
  }
}
.header__nav-close {
  font-size: 4rem;
  color: #ffffff;
  position: absolute;
  right: 2rem;
  top: 1rem;
  display: none;
}
@media only screen and (max-width: 75em) {
  .header__nav-close {
    display: block;
  }
}
.header__nav {
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .header__nav {
    flex: 1;
    overflow-y: auto;
  }
}
.header__search {
  position: absolute;
  right: 12rem;
  top: -7.5rem;
}
.header__search .language-menu {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 6px;
  background-color: #471900;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(120%, -50%);
}
@media only screen and (max-width: 75em) {
  .header__search .language-menu {
    position: relative;
    transform: translate(0, 0);
    right: auto;
    top: auto;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 75em) {
  .header__search {
    position: relative;
    top: auto;
    right: auto;
    padding-right: 8rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex: none;
  }
}

.web-nav__1-list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    display: block;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-item {
    margin-right: 0;
  }
}
.web-nav__1-link {
  display: block;
  text-align: center;
  height: 4.5rem;
  padding: 0 0.5rem;
  width: 10rem;
  font-size: 1.4rem;
  line-height: 4.5rem;
  color: #ffffff;
  background: transparent;
  border-radius: 2px;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link {
    min-width: 100%;
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    height: auto;
    line-height: 7rem;
  }
}
.web-nav__1-link.active {
  color: #ffde00;
  font-weight: 600;
  background: #af2d05;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link.active {
    background: transparent;
  }
}
.web-nav__1-open {
  display: none;
}
.web-nav__2-list {
  position: absolute;
  top: 4.5rem;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 9999;
  padding: 1rem 0;
  border-radius: 0 0 4px 4px;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list {
    position: static;
    background-color: transparent;
    display: block;
    padding-left: 3rem;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
.web-nav__2-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  text-align: center;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link {
    color: #ffffff;
    line-height: 5rem;
    text-align: left;
    padding: 0;
  }
}
.web-nav__2-link:hover, .web-nav__2-link.active {
  color: #ffffff;
  font-weight: 600;
  background: #a95c4d;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link:hover, .web-nav__2-link.active {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "";
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link--arrow::after {
    display: none;
  }
}
.web-nav__2-open {
  display: none;
}
.web-nav__3-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  padding: 1rem 0;
  border-radius: 0 0 4px 4px;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  border-left: 1px solid rgba(71, 25, 0, 0.1);
}
@media only screen and (max-width: 75em) {
  .web-nav__3-list {
    position: static;
    padding: 0;
    padding-left: 6rem;
    border-left: none;
    background-color: transparent;
    display: block;
  }
}
.web-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.3rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link {
    color: #ffffff;
    line-height: 5rem;
    padding: 0;
  }
}
.web-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #a95c4d;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link:hover {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}

.partner {
  background: url(../images/bg-3.png) no-repeat center center/cover;
}
.partner .container {
  display: flex !important;
  justify-content: flex-start !important;
}
.partner .container h2 {
  flex: none;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 2;
}
.partner .container nav {
  padding-left: 3rem;
  display: flex;
  flex-wrap: wrap;
}
.partner .container nav a {
  position: relative;
  line-height: 2;
  font-weight: normal;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 400;
}
.partner .container nav a:not(:last-child) {
  padding-right: 2rem;
  margin-right: 2rem;
}
.partner .container nav a:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.4rem;
  border-left: 1px solid #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background: url(../images/footer-bg.png) no-repeat center center/cover;
}
.footer .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer .container {
    flex-direction: column;
  }
}
.footer .container .part-group {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer .container .part-group {
    flex-direction: column;
  }
}
.footer .container .part {
  position: relative;
}
@media only screen and (max-width: 75em) {
  .footer .container .part {
    margin: 2rem 0;
  }
}
.footer .container .part:not(:last-child) {
  padding-right: 5rem;
}
@media only screen and (max-width: 75em) {
  .footer .container .part:not(:last-child) {
    padding-right: 0;
  }
}
.footer .container .part:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 75em) {
  .footer .container .part:not(:last-child)::after {
    display: none;
  }
}
.footer .container .part:not(:first-child) {
  padding-left: 5rem;
}
@media only screen and (max-width: 75em) {
  .footer .container .part:not(:first-child) {
    padding-left: 0;
  }
}
.footer__logo img {
  display: block;
  width: 30vw;
}
.footer__info {
  display: grid;
}
.footer__info p {
  font-size: 1.2rem;
  color: #ffffff;
}
.footer__qr img {
  display: block;
  width: 8rem;
  height: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__qr img {
    margin: 0 auto;
  }
}
.footer__qr .text {
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
}
.footer__selector {
  width: 30rem;
}
.footer__selector .item {
  list-style: none;
}
.footer__selector .item:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__selector {
    border-right: none;
    padding-right: 0;
  }
}
.footer__copyright {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.08);
}
.footer__copyright p {
  max-width: 70rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}

.inner-page {
  position: relative;
}
.inner-page__wrapper {
  display: flex;
}
.inner-page__left {
  flex: none;
}
@media only screen and (max-width: 56.25em) {
  .inner-page__left {
    display: none;
  }
}
.inner-page__medium {
  flex: 1;
  overflow: hidden;
}
.inner-page__medium--top {
  padding-left: 4rem;
}
.inner-page__medium--top.pl-0 {
  padding-left: 0;
}
.inner-page__medium--bottom {
  padding-left: 4rem;
}
.inner-page__medium--bottom.pl-0 {
  padding-left: 0;
}
@media only screen and (max-width: 56.25em) {
  .inner-page__medium--bottom {
    padding-left: 0;
  }
}
.inner-page__right {
  flex: none;
}

.flex-row {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .flex-row {
    display: block;
  }
}
.flex-row--auto {
  flex: 1;
  padding-right: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .flex-row--auto {
    padding-right: 0;
  }
}
.flex-row--static {
  flex: none;
}

.side-bar {
  flex: none;
  width: 300px;
  position: relative;
  overflow: hidden;
  background: url(../images/side-bg.png) no-repeat center center/cover;
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 24rem;
  }
}
.side-bar__heading {
  line-height: 7rem;
  font-size: 2.6rem;
  padding-left: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  background: #A52B05 url(../images/side-icon.png) no-repeat right center/contain;
}

.side-nav {
  outline: 2px solid #fff;
  outline-offset: -7px;
  padding-bottom: 20rem;
}
.side-nav::after {
  content: "";
  display: block;
  width: 24rem;
  height: 24rem;
  background: url(../images/side-img.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 30%);
}
.side-nav__1-item {
  list-style: none;
  position: relative;
}
.side-nav__1-item:not(:last-child) {
  margin-bottom: 1rem;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
}
.side-nav__1-item.active > .side-nav__1-link {
  color: #A52B05;
  font-weight: 600;
  border-bottom: 2px solid #A52B05;
}
.side-nav__1-item.active > .side-nav__1-link::before {
  background: url(../images/side-nav-icon-active.png) no-repeat center center/cover;
}
.side-nav__1-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #111111;
  background: transparent;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}
.side-nav__1-link::before {
  content: "";
  display: block;
  width: 17px;
  height: 21px;
  background: url(../images/side-nav-icon.png) no-repeat center center/cover;
  margin-right: 4px;
}
.side-nav__1-open {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.side-nav__2-list {
  background-color: #ffffff;
  display: none;
}
.side-nav__2-item {
  list-style: none;
  position: relative;
}
.side-nav__2-item:not(:last-child) {
  border-bottom: 1px solid rgba(90, 90, 90, 0.2);
}
.side-nav__2-item.active > .side-nav__3-list {
  display: block;
}
.side-nav__2-item.active > .side-nav__2-link {
  color: #ffffff;
  font-weight: 600;
  background: #A95C4D;
}
.side-nav__2-link {
  display: block;
  padding-left: 3rem;
  font-size: 1.6rem;
  line-height: 5rem;
  color: #5a5a5a;
  white-space: nowrap;
  background-color: #ffffff;
}
.side-nav__3-list {
  padding: 1rem 0;
  background-color: #ffffff;
}
.side-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
.side-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #471900;
}

.section-banner {
  background: #ffffff url(../images/banner-bg.png) no-repeat top center/100%;
}
.section-banner img {
  display: block;
  width: 100%;
}
.section-banner .swiper-slide img {
  border: 3px solid #e3d2a8;
}
.section-banner .swiper-pagination-bullet {
  opacity: 1;
  width: 30px;
  height: 17px;
  background: url(../images/icon-4-yellow.png) no-repeat center center/cover;
}
.section-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/icon-4.png) no-repeat center center/cover;
}
.section-banner .swiper-box {
  position: relative;
}
.section-banner .swiper-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3rem;
  height: 3rem;
  background: url(../images/shadow.png) no-repeat top center/contain;
}

.home-contact img {
  display: block;
  width: 100%;
}

.section-1 {
  background: #ffffff;
}
.section-1 .swiper-dt {
  padding: 2rem;
  padding-bottom: 0;
  position: relative;
}
.section-1 .swiper-dt::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 4rem;
  background-color: #9c5c47;
}
.section-1 .swiper-dt .swiper-button-next,
.section-1 .swiper-dt .swiper-button-prev {
  width: 4rem;
  height: 4rem;
  top: auto;
  bottom: 0.8rem;
}
.section-1 .swiper-dt .swiper-button-next::after,
.section-1 .swiper-dt .swiper-button-prev::after {
  font-size: 12px;
  fill: #fff;
  color: #fff;
}
.section-1 .swiper-dt .swiper-button-next {
  right: 0;
}
.section-1 .swiper-dt .swiper-button-prev {
  left: 0;
}
.section-1 .dt-list {
  border-left: 2px solid #9c5c47;
  background-color: #fffbf2;
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}
.section-1 .dt-list .item {
  list-style: none;
}

.section-2 {
  background: url(../images/bg-6.png) no-repeat center center/cover;
}
.section-2 .swiper {
  padding-top: 2rem;
  padding-bottom: 6rem;
}
.section-2 .swiper-pagination {
  bottom: 0;
}
.section-2 .swiper-pagination-bullet {
  opacity: 1;
  width: 30px;
  height: 17px;
  background: url(../images/icon-4-yellow.png) no-repeat center center/cover;
}
.section-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/icon-4-red.png) no-repeat center center/cover;
}

.section-3 {
  background: #ffffff url(../images/icon-5.png) no-repeat left bottom;
}
.section-3 .jx-list {
  border: 1px solid #fef0e5;
  border-top: 2px solid #9c5c47;
  background-color: #fffbf2;
  padding: 2.2rem;
}
.section-3 .jx-list .item {
  list-style: none;
}
.section-3 .jx-list .item:not(:last-child) {
  margin-bottom: 1rem;
}
.section-3 .ky-list {
  border: 1px solid #fef0e5;
  border-top: 2px solid #9c5c47;
  background-color: #fffbf2;
  padding: 2.2rem;
}
.section-3 .ky-list .item {
  list-style: none;
}
.section-3 .ky-list .item:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fcdac0;
}

.section-4 {
  background: url(../images/bg-11.png) no-repeat center center/cover;
}
.section-4 .dj-card-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2rem / 2);
}
.section-4 .dj-card-list > .item {
  list-style: none;
  padding: calc(2rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-4 .dj-card-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-4 .dj-card-list > .item {
    width: calc((1 / 1) * 100%);
  }
}
.section-4 .dj-text-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2rem / 2);
  margin-top: 1rem;
}
.section-4 .dj-text-list > .item {
  list-style: none;
  padding: calc(2rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-4 .dj-text-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-4 .dj-text-list > .item {
    width: calc((1 / 1) * 100%);
  }
}
.section-4 .xxzl {
  display: flex;
  padding-top: 5rem;
}
.section-4 .xxzl .title {
  flex: none;
  width: 60px;
  background-color: #ffd800;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-4 .xxzl .title .text {
  width: 2.6rem;
  font-size: 2.6rem;
  color: #af2d05;
  font-weight: 600;
  line-height: 1.2;
}
.section-4 .xxzl .xxzl-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-0 / 2);
}
.section-4 .xxzl .xxzl-list > .item {
  list-style: none;
  padding: calc(0 / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-4 .xxzl .xxzl-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-4 .xxzl .xxzl-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
.section-4 .xxzl .xxzl-list .item {
  border: 1px solid #fcdac0;
}
.section-4 .xxzl .xxzl-list a img {
  display: block;
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.section-5 {
  background: url(../images/bg-9.png) no-repeat center center/cover;
}
.section-5 .swiper {
  padding-top: 2rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .section-5 .swiper {
    padding-top: 6rem;
  }
}
.section-5 .swiper-pagination {
  bottom: 0;
}
.section-5 .swiper-pagination-bullet {
  opacity: 1;
  width: 30px;
  height: 17px;
  background: url(../images/icon-4-yellow.png) no-repeat center center/cover;
}
.section-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/icon-4-red.png) no-repeat center center/cover;
}

.section-6 {
  background: #ffffff;
}
.section-6 .jxxx-list .item {
  list-style: none;
}
.section-6 .jxxx-list .item:not(:last-child) {
  margin-bottom: 3rem;
}
.section-6 .zsxx-list .item {
  list-style: none;
}
.section-6 .zsxx-list .item:not(:last-child) {
  margin-bottom: 1.45rem;
}

.section-7 {
  background: url(../images/bg-10.png) no-repeat center center/cover;
}
.section-7 .xs-card-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2rem / 2);
  margin-bottom: 1rem;
}
.section-7 .xs-card-list > .item {
  list-style: none;
  padding: calc(2rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-7 .xs-card-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-7 .xs-card-list > .item {
    width: calc((1 / 1) * 100%);
  }
}
.section-7 .xs-text-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2rem / 2);
}
.section-7 .xs-text-list > .item {
  list-style: none;
  padding: calc(2rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-7 .xs-text-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-7 .xs-text-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-8 {
  background: #ffffff;
}
.section-8__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2rem / 2);
}
.section-8__list > .item {
  list-style: none;
  padding: calc(2rem / 2);
  width: calc((1 / 8) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-8__list > .item {
    width: calc((1 / 4) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-8__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
.section-8__list--2 {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-4rem / 2);
}
.section-8__list--2 > .item {
  list-style: none;
  padding: calc(4rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 75em) {
  .section-8__list--2 > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-8__list--2 > .item {
    width: calc((1 / 1) * 100%);
  }
}
.section-8 .s8-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.section-8 .s8-card .cover {
  width: 12.5rem;
  height: 12.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/icon-2.png) no-repeat center center/contain;
}
.section-8 .s8-card .cover span {
  font-size: 5rem;
  color: #af4824;
}
.section-8 .s8-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.section-8 .s8-card .text {
  font-size: 1.5rem;
  color: #111;
  margin-top: 1rem;
}
.section-8 .s8-card:hover .cover {
  background: url(../images/icon-2-active.png) no-repeat center center/contain;
}
.section-8 .s8-card:hover .cover span {
  color: #ffffff;
}
.section-8 .s8-text {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 1rem;
  position: relative;
  transition: 0.3s ease-in-out;
}
.section-8 .s8-text .text {
  font-size: 1.8rem;
  color: #666;
}
.section-8 .s8-text:hover {
  border-bottom: 1px solid #471900;
}
.section-8 .s8-text:hover .text {
  color: #471900;
}
.section-8 .s8-text .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.static-banner img {
  display: block;
  width: 100%;
}

.inner-news-list {
  padding-top: 2rem;
}
.inner-news-list .item {
  list-style: none;
}
.inner-news-list .item:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.inner-picture-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.inner-picture-list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .inner-picture-list > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-picture-list > .item {
    width: calc((1 / 2) * 100%);
  }
}

.inner-teacher-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2.3rem / 2);
}
.inner-teacher-list > .item {
  list-style: none;
  padding: calc(2.3rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .inner-teacher-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-teacher-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.teacher-details {
  position: relative;
}
.teacher-details .base-info {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #A52B05 url(../images/teacher-info-bg.png) no-repeat 120% center/contain;
}
@media only screen and (max-width: 37.5em) {
  .teacher-details .base-info {
    display: block;
    padding: 0;
    padding-bottom: 2rem;
  }
}
.teacher-details .base-info::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 9rem;
  background: #ffffff;
  border-bottom: 3px solid #BE0404;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.teacher-details .base-info .cover {
  width: 24rem;
  height: 32rem;
  flex: none;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .teacher-details .base-info .cover {
    width: 100%;
    height: auto;
  }
}
.teacher-details .base-info .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 37.5em) {
  .teacher-details .base-info .cover img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}
.teacher-details .base-info .info {
  padding-left: 3rem;
}
@media only screen and (max-width: 75em) {
  .teacher-details .base-info .info {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .teacher-details .base-info .info {
    padding-left: 0;
  }
}
.teacher-details .base-info .info .top {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.teacher-details .base-info .info .top .name {
  font-size: 3rem;
  font-weight: 600;
  font-family: "yh-Bold";
  padding-right: 2rem;
  color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .top .name {
    font-size: 2.3rem;
  }
}
.teacher-details .base-info .info .top .tag {
  font-size: 2rem;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
  top: -0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .top .tag {
    font-size: 1.4rem;
  }
}
.teacher-details .base-info .info .labels {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
}
.teacher-details .base-info .info .labels .text {
  width: 50%;
  padding-right: 2rem;
  font-size: 1.6rem;
  box-sizing: border-box;
  padding-bottom: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .labels .text {
    width: 100%;
    padding-right: 0;
  }
}
.teacher-details .base-info .info .labels .text--phone::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-phone.png) no-repeat center center/cover;
  margin-right: 0.8rem;
}
.teacher-details .base-info .info .labels .text--address::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-address.png) no-repeat center center/cover;
  margin-right: 0.8rem;
}
.teacher-details .base-info .info .labels .text--email::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-email.png) no-repeat center center/cover;
  margin-right: 0.8rem;
}
.teacher-details .base-info .info .desc {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.6;
}
.teacher-details .details-info {
  background: #F3F3F3;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
}
.teacher-details .details-info h3 {
  height: 5rem;
  line-height: 4.6rem;
  font-size: 2rem;
  padding-left: 30px;
  font-weight: bold;
  color: #A95C4D;
  position: relative;
  background: url(../images/line-4.png) no-repeat center bottom/100%;
}
.teacher-details .details-info h3::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/teacher-icon-1.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.teacher-details .details-info h3::after {
  content: "";
  display: block;
  width: 51px;
  height: 31px;
  background: url(../images/teacher-icon-2.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.teacher-details .details-info h3:not(:first-child) {
  margin-top: 3rem;
}
.teacher-details .details-info p {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  color: #2f2f2f;
}
